Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text. Some indented text.
This is a test
This is a caption
class stockClass
dim shares as double
dim ticker as string
dim price as double
sub constructor(stockTicker as string, sharesHeld as double)
ticker = stockTicker
shares = sharesHeld
price = cachedStockPrice(ticker)
end sub
function value() as double
return price * shares
end function
end class